home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-20 | 669 b | 34 lines |
- #!smake
- include $(ROOT)/usr/include/make/commondefs
-
- MOTIFLIBS = -lSgm -lXm -lXt -lX11 -lPW
- VKLIBS = $(VKLIBPATH) -lvk -lXpm
- LLDLIBS= $(VKLIBS) $(MOTIFLIBS) -lm
- LC++FLAGS=$(VKINCLUDEPATH)
-
- OPTIMIZER=-O
-
- C++FILES=\
- $(NULL)
-
- HEADERS= \
- $(NULL)
-
- TARGETS=alignmentTest
-
- default all targets: $(TARGETS)
-
- alignmentTest: driver.o AlignmentTestUI.o AlignmentTest.o
- $(C++) -o alignmentTest driver.o AlignmentTestUI.o AlignmentTest.o $(LDOPTS) $(LLDLIBS)
-
- AlignmentTest.o: AlignmentTest.c++ AlignmentTest.h AlignmentTestUI.h
- alignmentTest.o: AlignmentTest.h AlignmentTestUI.h
-
- clean:
- rm -f *.o
-
- clobber: clean
- rm -f alignmentTest
-
- #@#include $(COMMONRULES)
-